home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / gnat1792.zip / gnat179b / t-adainc / s-enviro.ads < prev    next >
Text File  |  1994-05-19  |  2KB  |  41 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                   S Y S T E M . E N V I R O N M E N T                    --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.8 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. --  This package contains functions to access arguments on the command line
  26.  
  27. package System.Environment is
  28.  
  29.    type Arg_Ptr is access String;
  30.  
  31.    function Arg_Count return Positive;
  32.    pragma Interface (C, Arg_Count);
  33.    --  Return the number of arg in the command line (equivalent to argc in C)
  34.    --  Note in particular that the count is one more than might be expected,
  35.    --  since it includes Arg_Value (0) which is the command name.
  36.  
  37.    function Arg_Value (Arg_Num : Natural) return Arg_Ptr;
  38.    --  Return the desired arg. from the command line (0 is the command name)
  39.  
  40. end System.Environment;
  41.